From: Greg Sabino Mullane Date: Sat, 17 Mar 2007 20:00:09 +0000 (+0000) Subject: Postgres: Change math_inputhash and math_outputhash to bytea for bug #8716 X-Git-Tag: 1.31.0-rc.0~53683 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=eecb949a6117a64f26723c389541b1f7a7049364;p=lhc%2Fweb%2Fwiklou.git Postgres: Change math_inputhash and math_outputhash to bytea for bug #8716 --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index ccb02d9973..1c400bd889 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -275,6 +275,7 @@ lighter making things easier to read. * (bug 9019) No warning during upload if image description page exists, but no image * (bug 8582) Allow thumbnailing when imagesize has a space. +* (bug 8716) Change math_inputhash and math_outputhash to byte for Postgres Support protocols other than HTTP in LinkFilter diff --git a/maintenance/postgres/tables.sql b/maintenance/postgres/tables.sql index 8f9657be99..5c9a28d4d0 100644 --- a/maintenance/postgres/tables.sql +++ b/maintenance/postgres/tables.sql @@ -342,8 +342,8 @@ CREATE UNIQUE INDEX wl_user_namespace_title ON watchlist (wl_namespace, wl_title CREATE TABLE math ( - math_inputhash TEXT NOT NULL UNIQUE, - math_outputhash TEXT NOT NULL, + math_inputhash BYTEA NOT NULL UNIQUE, + math_outputhash BYTEA NOT NULL, math_html_conservativeness SMALLINT NOT NULL, math_html TEXT, math_mathml TEXT